home *** CD-ROM | disk | FTP | other *** search
/ Info-Mac 4 / Info_Mac IV CD-ROM (Pacific HiTech Inc.)(August 1994).iso / Applications / Demos_Demo folder / Demos_Info folder / Demos™ Demonstration / Demos Help / Demos Help.rsrc / STR#_2005.txt < prev    next >
Text File  |  1994-03-09  |  921b  |  65 lines

  1. If b is entirely true then it gives the value of x; otherwise it gives the value of y.
  2.  
  3. Example: IfOnly b Then x Else y
  4.  
  5. If b is true then it gives the value of x; otherwise it gives the value of y.
  6.  
  7. Example: If b Then x Else y
  8.  
  9. True if both a and b are true.
  10.  
  11. Example: a And b
  12.  
  13. True if a or b or both are true.
  14.  
  15. Example: a Or b
  16.  
  17. The opposite of the truth of b.
  18.  
  19. Example: Not b
  20.  
  21. True if x is greater than y.
  22.  
  23. Example: x > y
  24.  
  25. True if x is greater than or equal to y.
  26. Examples: x >= y,  x ‚â• y
  27.  
  28. True if x is not equal to y.
  29. Examples: x <> y,  x ‚↠y
  30.  
  31. True if x is equal to y.
  32.  
  33. Example: x = y
  34.  
  35. True if x is less than or equal to y.
  36. Examples: x <= y,  x ‚⧠y
  37.  
  38. True if x is less than y.
  39.  
  40. Example: x < y
  41.  
  42. x raised to the power of y.
  43.  
  44. Example: x^y
  45.  
  46. x divided by y.
  47. Examples:  x / y,   x √∑ y
  48.  
  49. x multiplied by y.
  50.  
  51. Example: x * y
  52.  
  53. x minus y.
  54.  
  55. Example: x - y
  56.  
  57. x plus y.
  58.  
  59. Example: x + y
  60.  
  61. Changes the sign of x.
  62.  
  63. Example: ( -x )
  64.  
  65.